home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / developer_install / CEGUISDK-0.4.1-VC6-STLport.exe / {app} / include / renderers / IrrlichtRenderer / IrrlichtRendererDef.h < prev    next >
C/C++ Source or Header  |  2005-03-09  |  2KB  |  49 lines

  1. /************************************************************************
  2. filename:     IrrlichtRendererDef.h
  3. created:    20/7/2004
  4. author:        Thomas Suter
  5.  
  6. changes: 
  7. - Irrlicht patching not needed anymore
  8. - using the irrlicht filesystem to load config files etc.
  9. *************************************************************************/
  10.  
  11. /*************************************************************************
  12. Crazy Eddie's GUI System (http://www.cegui.org.uk)
  13. Copyright (C)2004 - 2005 Paul D Turner (paul@cegui.org.uk)
  14.  
  15. This library is free software; you can redistribute it and/or
  16. modify it under the terms of the GNU Lesser General Public
  17. License as published by the Free Software Foundation; either
  18. version 2.1 of the License, or (at your option) any later version.
  19.  
  20. This library is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  23. Lesser General Public License for more details.
  24.  
  25. You should have received a copy of the GNU Lesser General Public
  26. License along with this library; if not, write to the Free Software
  27. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  28. *************************************************************************/
  29.  
  30. /*
  31.     Beginning from version 0.7 Irrlicht does NOT need any changes for the GUI-renderer.
  32.     Thanks to Nikolaus Gebhardt for including the missing methods in the renderer.
  33. */
  34.  
  35. #ifndef IRRLICHTRENDERERDEF_H_INCLUDED
  36. #define IRRLICHTRENDERERDEF_H_INCLUDED
  37.  
  38. #if defined( __WIN32__ ) || defined( _WIN32 ) || defined (WIN32)
  39. #   ifdef IRRRENDERER_EXPORTS
  40. #       define IRRLICHT_GUIRENDERER_API __declspec(dllexport)
  41. #   else
  42. #       define IRRLICHT_GUIRENDERER_API __declspec(dllimport)
  43. #   endif
  44. #else
  45. #   define IRRLICHT_GUIRENDERER_API
  46. #endif
  47.  
  48. #endif
  49.